home *** CD-ROM | disk | FTP | other *** search
/ mail.altrad.com / 2015.02.mail.altrad.com.tar / mail.altrad.com / TEST / office german / PROPLUS.WW / PROPLSWW.CAB / OINFOP12.MOF < prev    next >
Text File  |  2006-10-26  |  75KB  |  1,833 lines

  1. //**************************************************************************
  2. //* File: OInfoP12.mof - Office Extension MOF File for MSInfo >= 5.0
  3. //**************************************************************************
  4. #pragma autorecover
  5.  
  6. //*************************************************************
  7. //***    Creates namespace for MSAPPS
  8. //*************************************************************
  9. #pragma namespace ("\\\\.\\Root")
  10.  
  11. instance of __Namespace
  12. {
  13.     Name = "MSAPPS12";
  14.     //should this remain MSAPPS?
  15. };
  16.  
  17. //*************************************************************
  18. //***    Changes focus to new namespace
  19. //*************************************************************
  20.  
  21. #pragma namespace ("\\\\.\\Root\\MSAPPS12")
  22.  
  23.  
  24. //**************************************************************************
  25. //* Declare an instance of the __Win32Provider so as to "register" the
  26. //* Office provider.
  27. //**************************************************************************
  28. instance of __Win32Provider as $P
  29. {
  30.     Name = "OffProv12";
  31.     // ClsId = "{D2BD7935-05FC-11D2-9059-00C04FD7A1BD}";
  32.     //this was define as class DECLSPEC_UUID("D2BD7935-05FC-11D2-9059-00C04FD7A1BD")
  33.     //OfficeObj;
  34.     // in Offprov.h
  35.     ClsId = "{DBF82DC7-E750-4CCF-B09C-D8AECEF7158E}";
  36.     // We comment out the following line when installing on Win2K, so DO NOT
  37.     // remove the unique word we use to find this line easily
  38.     // W2KHOSTINGMODELTAG
  39.     HostingModel = "SelfHost";
  40. };
  41.  
  42. instance of __InstanceProviderRegistration
  43. {
  44.     Provider = $P;
  45.     SupportsGet = TRUE;
  46.     SupportsPut = FALSE;
  47.     SupportsEnumeration = TRUE;
  48.     SupportsDelete = FALSE;
  49.     QuerySupportLevels = NULL;
  50. };
  51.  
  52. //**************************************************************************
  53. //* Class: Win32_Word12Summary
  54. //* Derived from:
  55. //**************************************************************************
  56. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  57. class Win32_Word12Summary
  58. {
  59.     [read: ToInstance ToSubClass] string Name;
  60.     [read: ToInstance ToSubClass] string Version;
  61.     [read: ToInstance ToSubClass] string Build;
  62.     [read: ToInstance ToSubClass] string ProductID;
  63.     [read: ToInstance ToSubClass] string Path;
  64.     [read: ToInstance ToSubClass] string Language;
  65.     [read: ToInstance ToSubClass] string SystemLanguage;
  66.     [read: ToInstance ToSubClass] string ActivePrinter;
  67.     [read: ToInstance ToSubClass] uint32 DocumentCount;
  68.     [read: ToInstance ToSubClass] uint32 TemplateCount;
  69.     [read: ToInstance ToSubClass] uint32 AddinCount;
  70. };
  71.  
  72. //**************************************************************************
  73. //* Class: Win32_Word12Document
  74. //* Derived from: 
  75. //**************************************************************************
  76. [dynamic: ToInstance, provider("OffProv12")]
  77. class Win32_Word12Document
  78. {
  79.     [key, read: ToInstance ToSubClass] string Name;
  80.     [read: ToInstance ToSubClass] string Path;
  81.     [read: ToInstance ToSubClass] real32 Size;
  82.     [read: ToInstance ToSubClass] datetime CreateDate;
  83. };
  84.  
  85. //**************************************************************************
  86. //* Class: Win32_Word12Template
  87. //* Derived from: 
  88. //**************************************************************************
  89. [dynamic: ToInstance, provider("OffProv12")]
  90. class Win32_Word12Template
  91. {
  92.     [key, read: ToInstance ToSubClass] string Name;
  93.     [read: ToInstance ToSubClass] string Path;
  94.     [read: ToInstance ToSubClass] string Type;
  95. };
  96.  
  97. //**************************************************************************
  98. //* Class: Win32_Word12Addin
  99. //* Derived from: 
  100. //**************************************************************************
  101. [dynamic: ToInstance, provider("OffProv12")]
  102. class Win32_Word12Addin
  103. {
  104.     [key, read: ToInstance ToSubClass] string Name;
  105.     [read: ToInstance ToSubClass] string Path;
  106.     [read: ToInstance ToSubClass] boolean Loaded;
  107.     [read: ToInstance ToSubClass] boolean Autoloaded;
  108. };
  109.  
  110. //**************************************************************************
  111. //* Class: Win32_Word12ActiveDocument
  112. //* Derived from: 
  113. //**************************************************************************
  114. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  115. class Win32_Word12ActiveDocument
  116. {
  117.     [read: ToInstance ToSubClass] string Name;
  118.     [read: ToInstance ToSubClass] string Path;
  119.     [read: ToInstance ToSubClass] real32 Size;
  120.     [read: ToInstance ToSubClass] datetime CreateDate;
  121.     [read: ToInstance ToSubClass] string Author;
  122.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  123.     [read: ToInstance ToSubClass] string LastAuthor;
  124.     [read: ToInstance ToSubClass] string Template;
  125.     [read: ToInstance ToSubClass] uint32 Chars;
  126.     [read: ToInstance ToSubClass] uint32 CharsWithSpaces;
  127.     [read: ToInstance ToSubClass] uint32 Words;
  128.     [read: ToInstance ToSubClass] uint32 Lines;
  129.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  130.     [read: ToInstance ToSubClass] uint32 Pages;
  131.     [read: ToInstance ToSubClass] uint32 Sections;
  132.     [read: ToInstance ToSubClass] string View;
  133.     [read: ToInstance ToSubClass] uint32 ZoomPercentage;
  134.     [read: ToInstance ToSubClass] boolean AllowFastSaves;
  135.     [read: ToInstance ToSubClass] sint32 WindowPosLeft;
  136.     [read: ToInstance ToSubClass] sint32 WindowPosTop;
  137.     [read: ToInstance ToSubClass] string StoryTypes;
  138. };
  139.  
  140. //**************************************************************************
  141. //* Class: Win32_Word12ActiveDocumentNotable
  142. //* Derived from: 
  143. //**************************************************************************
  144. [dynamic: ToInstance, provider("OffProv12")]
  145. class Win32_Word12ActiveDocumentNotable
  146. {
  147.     [key, read: ToInstance ToSubClass] string Text;
  148. };
  149.  
  150. //**************************************************************************
  151. //* Class: Win32_Word12Fields
  152. //* Derived from: 
  153. //**************************************************************************
  154. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  155. class Win32_Word12Fields
  156. {
  157.     [read: ToInstance ToSubClass] uint32 FieldCount;
  158.     [read: ToInstance ToSubClass] boolean ShowFieldCodes;
  159.     [read: ToInstance ToSubClass] boolean UpdateFieldsAtPrint;
  160.     [read: ToInstance ToSubClass] boolean UpdateLinksAtOpen;
  161. };
  162.  
  163. //**************************************************************************
  164. //* Class: Win32_Word12Field
  165. //* Derived from: 
  166. //**************************************************************************
  167. [dynamic: ToInstance, provider("OffProv12")]
  168. class Win32_Word12Field
  169. {
  170.     [key, read: ToInstance ToSubClass] uint32 Index;
  171.     [read: ToInstance ToSubClass] string Type;
  172.     [read: ToInstance ToSubClass] string Code;
  173.     [read: ToInstance ToSubClass] boolean Locked;
  174. };
  175.  
  176. //**************************************************************************
  177. //* Class: Win32_Word12FileConverters
  178. //* Derived from: 
  179. //**************************************************************************
  180. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  181. class Win32_Word12FileConverters
  182. {
  183.     [read: ToInstance ToSubClass] string FileConverterCount;
  184. };
  185.  
  186. //**************************************************************************
  187. //* Class: Win32_Word12FileConverter
  188. //* Derived from: 
  189. //**************************************************************************
  190. [dynamic: ToInstance, provider("OffProv12")]
  191. class Win32_Word12FileConverter
  192. {
  193.     [key, read: ToInstance ToSubClass] string Name;
  194.     [read: ToInstance ToSubClass] boolean CanOpen;
  195.     [read: ToInstance ToSubClass] boolean CanSave;
  196.     [read: ToInstance ToSubClass] string Extensions;
  197. };
  198.  
  199. //**************************************************************************
  200. //* Class: Win32_Word12Fonts
  201. //* Derived from: 
  202. //**************************************************************************
  203. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  204. class Win32_Word12Fonts
  205. {
  206.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  207.     [read: ToInstance ToSubClass] uint32 FontCount;
  208. };
  209.  
  210. //**************************************************************************
  211. //* Class: Win32_Word12Font
  212. //* Derived from: 
  213. //**************************************************************************
  214. [dynamic: ToInstance, provider("OffProv12")]
  215. class Win32_Word12Font
  216. {
  217.     [key, read: ToInstance ToSubClass] string Name;
  218. };
  219.  
  220. //**************************************************************************
  221. //* Class: Win32_Word12Sections
  222. //* Derived from: 
  223. //**************************************************************************
  224. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  225. class Win32_Word12Sections
  226. {
  227.     [read: ToInstance ToSubClass] uint32 SectionCount;
  228. };
  229.  
  230. //**************************************************************************
  231. //* Class: Win32_Word12HeaderAndFooter
  232. //* Derived from: 
  233. //**************************************************************************
  234. [dynamic: ToInstance, provider("OffProv12")]
  235. class Win32_Word12HeaderAndFooter
  236. {
  237.     [key, read: ToInstance ToSubClass] uint32 Section;
  238.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  239.     [read: ToInstance ToSubClass] real32 FooterDistance;
  240.     [read: ToInstance ToSubClass] uint32 HeaderChars;
  241.     [read: ToInstance ToSubClass] boolean HeaderLinkedToPrevious;
  242.     [read: ToInstance ToSubClass] string HeaderText;
  243.     [read: ToInstance ToSubClass] uint32 FooterChars;
  244.     [read: ToInstance ToSubClass] boolean FooterLinkedToPrevious;
  245.     [read: ToInstance ToSubClass] string FooterText;
  246.     [read: ToInstance ToSubClass] uint32 FirstHeaderChars;
  247.     [read: ToInstance ToSubClass] boolean FirstHeaderLinkedToPrevious;
  248.     [read: ToInstance ToSubClass] string FirstHeaderText;
  249.     [read: ToInstance ToSubClass] uint32 FirstFooterChars;
  250.     [read: ToInstance ToSubClass] boolean FirstFooterLinkedToPrevious;
  251.     [read: ToInstance ToSubClass] string FirstFooterText;
  252.     [read: ToInstance ToSubClass] uint32 EvenHeaderChars;
  253.     [read: ToInstance ToSubClass] boolean EvenHeaderLinkedToPrevious;
  254.     [read: ToInstance ToSubClass] string EvenHeaderText;
  255.     [read: ToInstance ToSubClass] uint32 EvenFooterChars;
  256.     [read: ToInstance ToSubClass] boolean EvenFooterLinkedToPrevious;
  257.     [read: ToInstance ToSubClass] string EvenFooterText;
  258.     [read: ToInstance ToSubClass] string Notables;
  259. };
  260.  
  261. //**************************************************************************
  262. //* Class: Win32_Word12Hyperlinks
  263. //* Derived from: 
  264. //**************************************************************************
  265. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  266. class Win32_Word12Hyperlinks
  267. {
  268.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  269. };
  270.  
  271. //**************************************************************************
  272. //* Class: Win32_Word12Hyperlink
  273. //* Derived from: 
  274. //**************************************************************************
  275. [dynamic: ToInstance, provider("OffProv12")]
  276. class Win32_Word12Hyperlink
  277. {
  278.     [key, read: ToInstance ToSubClass] uint32 Index;
  279.     [read: ToInstance ToSubClass] string Target;
  280.     [read: ToInstance ToSubClass] string Address;
  281.     [read: ToInstance ToSubClass] string TextToDisplay;
  282.     [read: ToInstance ToSubClass] string Type;
  283.     [read: ToInstance ToSubClass] string Subaddress;
  284.     [read: ToInstance ToSubClass] string ScreenTip;
  285.     [read: ToInstance ToSubClass] string Name;
  286. };
  287.  
  288. //**************************************************************************
  289. //* Class: Win32_Word12MailMerge
  290. //* Derived from: 
  291. //**************************************************************************
  292. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  293. class Win32_Word12MailMerge
  294. {
  295.     [read: ToInstance ToSubClass] string DocumentName;
  296.     [read: ToInstance ToSubClass] string DocumentType;
  297.     [read: ToInstance ToSubClass] string MergeTo;
  298.     [read: ToInstance ToSubClass] string State;
  299.     [read: ToInstance ToSubClass] boolean SuppressBlankLines;
  300.     [read: ToInstance ToSubClass] boolean ViewFieldCodes;
  301.     [read: ToInstance ToSubClass] uint32 FieldCount;
  302.     [read: ToInstance ToSubClass] string FieldCodes;
  303.     [read: ToInstance ToSubClass] string DataSourceName;
  304.     [read: ToInstance ToSubClass] string DataSourceType;
  305.     [read: ToInstance ToSubClass] string ActiveRecord;
  306.     [read: ToInstance ToSubClass] string FieldNames;
  307.     [read: ToInstance ToSubClass] string Notables;
  308. };
  309.  
  310. //**************************************************************************
  311. //* Class: Win32_Word12PageNumber
  312. //* Derived from: 
  313. //**************************************************************************
  314. [dynamic: ToInstance, provider("OffProv12")]
  315. class Win32_Word12PageNumber
  316. {
  317.     [key, read: ToInstance ToSubClass] uint32 Section;
  318.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  319.     [read: ToInstance ToSubClass] string PageNumbersIn;
  320.     [read: ToInstance ToSubClass] uint32 Start;
  321.     [read: ToInstance ToSubClass] boolean Restart;
  322.     [read: ToInstance ToSubClass] boolean ShowFirst;
  323. };
  324.  
  325. //**************************************************************************
  326. //* Class: Win32_Word12PageSetup
  327. //* Derived from: 
  328. //**************************************************************************
  329. [dynamic: ToInstance, provider("OffProv12")]
  330. class Win32_Word12PageSetup
  331. {
  332.     [key, read: ToInstance ToSubClass] uint32 Section;
  333.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  334.     [read: ToInstance ToSubClass] real32 FooterDistance;
  335.     [read: ToInstance ToSubClass] real32 TopMargin;
  336.     [read: ToInstance ToSubClass] real32 BottomMargin;
  337.     [read: ToInstance ToSubClass] real32 LeftMargin;
  338.     [read: ToInstance ToSubClass] real32 RightMargin;
  339.     [read: ToInstance ToSubClass] string PaperSize;
  340.     [read: ToInstance ToSubClass] real32 PageHeight;
  341.     [read: ToInstance ToSubClass] real32 PageWidth;
  342.     [read: ToInstance ToSubClass] string Orientation;
  343.     [read: ToInstance ToSubClass] string SectionStart;
  344.     [read: ToInstance ToSubClass] string VerticalAlignment;
  345.     [read: ToInstance ToSubClass] real32 CharsLine;
  346.     [read: ToInstance ToSubClass] real32 LinesPage;
  347.     [read: ToInstance ToSubClass] string Notables;
  348. };
  349.  
  350. //**************************************************************************
  351. //* Class: Win32_Word12Styles
  352. //* Derived from: 
  353. //**************************************************************************
  354. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  355. class Win32_Word12Styles
  356. {
  357.     [read: ToInstance ToSubClass] boolean AutoFormatAsYouTypeDefineStyles;
  358.     [read: ToInstance ToSubClass] boolean AutoFormatPreserveStyles;
  359.     [read: ToInstance ToSubClass] uint32 ParagraphStyleCount;
  360.     [read: ToInstance ToSubClass] uint32 CharacterStyleCount;
  361. };
  362.  
  363. //**************************************************************************
  364. //* Class: Win32_Word12ParagraphStyle
  365. //* Derived from: 
  366. //**************************************************************************
  367. [dynamic: ToInstance, provider("OffProv12")]
  368. class Win32_Word12ParagraphStyle
  369. {
  370.     [key, read: ToInstance ToSubClass] string Name;
  371.     [read: ToInstance ToSubClass] string Description;
  372.     [read: ToInstance ToSubClass] string BaseStyle;
  373.     [read: ToInstance ToSubClass] string NextStyle;
  374.     [read: ToInstance ToSubClass] boolean BuiltIn;
  375.     [read: ToInstance ToSubClass] boolean NoProofing;
  376.     [read: ToInstance ToSubClass] boolean AutomaticallyUpdate;
  377. };
  378.  
  379. //**************************************************************************
  380. //* Class: Win32_Word12CharacterStyle
  381. //* Derived from: 
  382. //**************************************************************************
  383. [dynamic: ToInstance, provider("OffProv12")]
  384. class Win32_Word12CharacterStyle
  385. {
  386.     [key, read: ToInstance ToSubClass] string Name;
  387.     [read: ToInstance ToSubClass] string Description;
  388.     [read: ToInstance ToSubClass] string BaseStyle;
  389.     [read: ToInstance ToSubClass] boolean BuiltIn;
  390. };
  391.  
  392. //**************************************************************************
  393. //* Class: Win32_Word12Settings
  394. //* Derived from: 
  395. //**************************************************************************
  396. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  397. class Win32_Word12Settings
  398. {
  399.     [read: ToInstance ToSubClass] boolean BackgroundSave;
  400.     [read: ToInstance ToSubClass] boolean AllowDragAndDrop;
  401.     [read: ToInstance ToSubClass] boolean CreateBackup;
  402.     [read: ToInstance ToSubClass] boolean AutoHyphenation;
  403.     [read: ToInstance ToSubClass] uint32 SaveInterval;
  404.     [read: ToInstance ToSubClass] boolean Pagination;
  405.     [read: ToInstance ToSubClass] boolean ConfirmConversions;
  406.     [read: ToInstance ToSubClass] string DefaultFilePath;
  407.     [read: ToInstance ToSubClass] string DefaultSaveFormat;
  408.     [read: ToInstance ToSubClass] boolean DisplayAutoCompleteTips;
  409.     [read: ToInstance ToSubClass] boolean DisplayHorizontalScrollBar;
  410.     [read: ToInstance ToSubClass] boolean DisplayRecentFiles;
  411.     [read: ToInstance ToSubClass] uint32 RecentFilesMaximum;
  412.     [read: ToInstance ToSubClass] boolean DisplayRulers;
  413.     [read: ToInstance ToSubClass] boolean DisplayScreenTips;
  414.     [read: ToInstance ToSubClass] boolean DisplayScrollBars;
  415.     [read: ToInstance ToSubClass] boolean DisplayStatusBar;
  416.     [read: ToInstance ToSubClass] string MeasurementUnits;
  417.     [read: ToInstance ToSubClass] uint32 MinimumFontSize;
  418.     [read: ToInstance ToSubClass] boolean Overtype;
  419.     [read: ToInstance ToSubClass] boolean PrintFormsData;
  420.     [read: ToInstance ToSubClass] boolean PrintPostScriptOverText;
  421.     [read: ToInstance ToSubClass] boolean PrintRevisions;
  422.     [read: ToInstance ToSubClass] boolean SavePropertiesPrompt;
  423.     [read: ToInstance ToSubClass] boolean SaveNormalPrompt;
  424.     [read: ToInstance ToSubClass] boolean EnableSound;
  425.     [read: ToInstance ToSubClass] boolean SaveFormsData;
  426.     [read: ToInstance ToSubClass] boolean ShowAll;
  427.     [read: ToInstance ToSubClass] boolean AnimateScreenMovements;
  428.     [read: ToInstance ToSubClass] boolean ShowAnimation;
  429.     [read: ToInstance ToSubClass] boolean BlueScreen;
  430.     [read: ToInstance ToSubClass] boolean ShowBookmarks;
  431.     [read: ToInstance ToSubClass] boolean ShowMainTextLayer;
  432.     [read: ToInstance ToSubClass] boolean ShowDrawings;
  433.     [read: ToInstance ToSubClass] boolean ShowFieldCodes;
  434.     [read: ToInstance ToSubClass] string FieldShading;
  435.     [read: ToInstance ToSubClass] boolean ShowHiddenText;
  436.     [read: ToInstance ToSubClass] boolean ShowHighlight;
  437.     [read: ToInstance ToSubClass] boolean ShowHyphens;
  438.     [read: ToInstance ToSubClass] boolean ShowObjectAnchors;
  439.     [read: ToInstance ToSubClass] boolean ShowParagraphs;
  440.     [read: ToInstance ToSubClass] boolean ShowRevisions;
  441.     [read: ToInstance ToSubClass] boolean ShowSpaces;
  442.     [read: ToInstance ToSubClass] boolean ShowSummary;
  443.     [read: ToInstance ToSubClass] boolean ShowTabs;
  444.     [read: ToInstance ToSubClass] boolean TableGridlines;
  445.     [read: ToInstance ToSubClass] boolean ShowTextBoundaries;
  446.     [read: ToInstance ToSubClass] boolean TabIndentKey;
  447.     [read: ToInstance ToSubClass] boolean TrackRevisions;
  448.     [read: ToInstance ToSubClass] boolean ReplaceSelection;
  449.     [read: ToInstance ToSubClass] boolean INSKeyForPaste;
  450.     [read: ToInstance ToSubClass] boolean SmartCutPaste;
  451. };
  452.  
  453. //**************************************************************************
  454. //* Class: Win32_Word12AlternateStartupFileLocation
  455. //* Derived from: 
  456. //**************************************************************************
  457. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  458. class Win32_Word12AlternateStartupFileLocation
  459. {
  460.     [read: ToInstance ToSubClass] string Path;
  461. };
  462.  
  463.  
  464. //**************************************************************************
  465. //* Class: Win32_Word12StartupFileLocation
  466. //* Derived from: 
  467. //**************************************************************************
  468. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  469. class Win32_Word12StartupFileLocation
  470. {
  471.     [read: ToInstance ToSubClass] string Path;
  472. };
  473.  
  474. //**************************************************************************
  475. //* Class: Win32_Word12DefaultFileLocation
  476. //* Derived from: 
  477. //**************************************************************************
  478. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  479. class Win32_Word12DefaultFileLocation
  480. {
  481.     [read: ToInstance ToSubClass] string Path;
  482. };
  483.  
  484. //**************************************************************************
  485. //* Class: Win32_Word12Tables
  486. //* Derived from: 
  487. //**************************************************************************
  488. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  489. class Win32_Word12Tables
  490. {
  491.     [read: ToInstance ToSubClass] uint32 TableCount;
  492. };
  493.  
  494. //**************************************************************************
  495. //* Class: Win32_Word12SelectedTable
  496. //* Derived from: 
  497. //**************************************************************************
  498. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  499. class Win32_Word12SelectedTable
  500. {
  501.     [read: ToInstance ToSubClass] uint32 Page;
  502.     [read: ToInstance ToSubClass] uint32 Section;
  503.     [read: ToInstance ToSubClass] uint32 Rows;
  504.     [read: ToInstance ToSubClass] uint32 Columns;
  505.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  506.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  507.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  508.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  509.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  510.     [read: ToInstance ToSubClass] uint32 Tables;
  511.     [read: ToInstance ToSubClass] string PreferredWidthType;
  512.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  513.     [read: ToInstance ToSubClass] real32 Spacing;
  514.     [read: ToInstance ToSubClass] real32 TopMargin;
  515.     [read: ToInstance ToSubClass] real32 BottomMargin;
  516.     [read: ToInstance ToSubClass] real32 LeftMargin;
  517.     [read: ToInstance ToSubClass] real32 RightMargin;
  518.     [read: ToInstance ToSubClass] string RowAlignment;
  519.     [read: ToInstance ToSubClass] string RowHeightRule;
  520.     [read: ToInstance ToSubClass] real32 LeftIndent;
  521.     [read: ToInstance ToSubClass] boolean Uniform;
  522. };
  523.  
  524. //**************************************************************************
  525. //* Class: Win32_Word12Table
  526. //* Derived from: 
  527. //**************************************************************************
  528. [dynamic: ToInstance, provider("OffProv12")]
  529. class Win32_Word12Table
  530. {
  531.     [key, read: ToInstance ToSubClass] uint32 Index;
  532.     [read: ToInstance ToSubClass] uint32 Page;
  533.     [read: ToInstance ToSubClass] uint32 Section;
  534.     [read: ToInstance ToSubClass] uint32 Rows;
  535.     [read: ToInstance ToSubClass] uint32 Columns;
  536.     [read: ToInstance ToSubClass] boolean NestedTables;
  537. };
  538.  
  539.  
  540. //**************************************************************************
  541. //* Class: Win32_ExcelSummary
  542. //* Derived from:
  543. //**************************************************************************
  544. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  545. class Win32_ExcelSummary
  546. {
  547.     [read: ToInstance ToSubClass] string Name;
  548.     [read: ToInstance ToSubClass] string Version;
  549.     [read: ToInstance ToSubClass] string Build;
  550.     [read: ToInstance ToSubClass] string ProductID;
  551.     [read: ToInstance ToSubClass] string Path;
  552.     [read: ToInstance ToSubClass] string Language;
  553.     [read: ToInstance ToSubClass] uint32 WorkbookCount;
  554. };
  555.  
  556. //**************************************************************************
  557. //* Class: Win32_ExcelWorkbook
  558. //* Derived from: 
  559. //**************************************************************************
  560. [dynamic: ToInstance, provider("OffProv12")]
  561. class Win32_ExcelWorkbook
  562. {
  563.     [key, read: ToInstance ToSubClass] string Name;
  564.     [read: ToInstance ToSubClass] string Path;
  565.     [read: ToInstance ToSubClass] real32 Size;
  566.     [read: ToInstance ToSubClass] datetime CreateDate;
  567. };
  568.  
  569. //**************************************************************************
  570. //* Class: Win32_ExcelActiveWorkbook
  571. //* Derived from:
  572. //**************************************************************************
  573. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  574. class Win32_ExcelActiveWorkbook
  575. {
  576.     [read: ToInstance ToSubClass] string Name;
  577.     [read: ToInstance ToSubClass] string Path;
  578.     [read: ToInstance ToSubClass] real32 Size;
  579.     [read: ToInstance ToSubClass] string Format;
  580.     [read: ToInstance ToSubClass] datetime CreateDate;
  581.     [read: ToInstance ToSubClass] string Author;
  582.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  583.     [read: ToInstance ToSubClass] string LastAuthor;
  584.     [read: ToInstance ToSubClass] string ActiveSheet;
  585.     [read: ToInstance ToSubClass] string ActiveWindowType;
  586.     [read: ToInstance ToSubClass] uint32 ActiveWindowZoom;
  587.     [read: ToInstance ToSubClass] uint32 SheetCount;
  588. };
  589.  
  590. //**************************************************************************
  591. //* Class: Win32_ExcelActiveWorkbookNotable
  592. //* Derived from: 
  593. //**************************************************************************
  594. [dynamic: ToInstance, provider("OffProv12")]
  595. class Win32_ExcelActiveWorkbookNotable
  596. {
  597.     [key, read: ToInstance ToSubClass] string Text;
  598. };
  599.  
  600. //**************************************************************************
  601. //* Class: Win32_ExcelSheet
  602. //* Derived from: 
  603. //**************************************************************************
  604. [dynamic: ToInstance, provider("OffProv12")]
  605. class Win32_ExcelSheet
  606. {
  607.     [key, read: ToInstance ToSubClass] string Name;
  608.     [read: ToInstance ToSubClass] string Type;
  609.     [read: ToInstance ToSubClass] uint32 Cells;
  610.     [read: ToInstance ToSubClass] uint32 Rows;
  611.     [read: ToInstance ToSubClass] uint32 Columns;
  612. };
  613.  
  614. //**************************************************************************
  615. //* Class: Win32_ExcelAddIns
  616. //* Derived from:
  617. //**************************************************************************
  618. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  619. class Win32_ExcelAddIns
  620. {
  621.     [read: ToInstance ToSubClass] uint32 AddInCount;
  622. };
  623.  
  624. //**************************************************************************
  625. //* Class: Win32_ExcelAddIn
  626. //* Derived from:
  627. //**************************************************************************
  628. [dynamic: ToInstance, provider("OffProv12")]
  629. class Win32_ExcelAddIn
  630. {
  631.     [key, read: ToInstance ToSubClass] string Name;
  632.     [read: ToInstance ToSubClass] string Path;
  633.     [read: ToInstance ToSubClass] boolean Installed;
  634. };
  635.  
  636. //**************************************************************************
  637. //* Class: Win32_ExcelCharts
  638. //* Derived from:
  639. //**************************************************************************
  640. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  641. class Win32_ExcelCharts
  642. {
  643.     [read: ToInstance ToSubClass] string ActiveChart;
  644.     [read: ToInstance ToSubClass] uint32 ChartCount;
  645. };
  646.  
  647. //**************************************************************************
  648. //* Class: Win32_ExcelChart
  649. //* Derived from:
  650. //**************************************************************************
  651. [dynamic: ToInstance, provider("OffProv12")]
  652. class Win32_ExcelChart
  653. {
  654.     [key, read: ToInstance ToSubClass] string Name;
  655. };
  656.  
  657. //**************************************************************************
  658. //* Class: Win32_ExcelComAddins
  659. //* Derived from: 
  660. //**************************************************************************
  661. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  662. class Win32_ExcelComAddins
  663. {
  664.     [read: ToInstance ToSubClass] uint32 AddInCount;
  665. };
  666.  
  667. //**************************************************************************
  668. //* Class: Win32_ExcelComAddin
  669. //* Derived from: 
  670. //**************************************************************************
  671. [dynamic: ToInstance, provider("OffProv12")]
  672. class Win32_ExcelComAddin
  673. {
  674.     [key, read: ToInstance ToSubClass] string Name;
  675.     [read: ToInstance ToSubClass] string Installed;
  676.     [read: ToInstance ToSubClass] string Creator;
  677.     [read: ToInstance ToSubClass] string Guid;
  678.     [read: ToInstance ToSubClass] string Path;
  679. };
  680.  
  681. //**************************************************************************
  682. //* Class: Win32_WordComAddins
  683. //* Derived from: 
  684. //**************************************************************************
  685. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  686. class Win32_WordComAddins
  687. {
  688.     [read: ToInstance ToSubClass] uint32 AddInCount;
  689. };
  690.  
  691. //**************************************************************************
  692. //* Class: Win32_WordComAddin
  693. //* Derived from: 
  694. //**************************************************************************
  695. [dynamic: ToInstance, provider("OffProv12")]
  696. class Win32_WordComAddin
  697. {
  698.     [key, read: ToInstance ToSubClass] string Name;
  699.     [read: ToInstance ToSubClass] string Installed;
  700.     [read: ToInstance ToSubClass] string Creator;
  701.     [read: ToInstance ToSubClass] string Guid;
  702.     [read: ToInstance ToSubClass] string Path;
  703. };
  704.  
  705. //**************************************************************************
  706. //* Class: Win32_PowerPointSummary
  707. //* Derived from:
  708. //**************************************************************************
  709. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  710. class Win32_PowerPointSummary
  711. {
  712.     [read: ToInstance ToSubClass] string Name;
  713.     [read: ToInstance ToSubClass] string Version;
  714.     [read: ToInstance ToSubClass] string Build;
  715.     [read: ToInstance ToSubClass] string ProductID;
  716.     [read: ToInstance ToSubClass] string Path;
  717.     [read: ToInstance ToSubClass] string Language;
  718.     [read: ToInstance ToSubClass] uint32 PresentationCount;
  719. };
  720.  
  721. //**************************************************************************
  722. //* Class: Win32_PowerPointPresentation
  723. //* Derived from: 
  724. //**************************************************************************
  725. [dynamic: ToInstance, provider("OffProv12")]
  726. class Win32_PowerPointPresentation
  727. {
  728.     [key, read: ToInstance ToSubClass] string Name;
  729.     [read: ToInstance ToSubClass] string Path;
  730.     [read: ToInstance ToSubClass] real32 Size;
  731.     [read: ToInstance ToSubClass] datetime CreateDate;
  732. };
  733.  
  734. //**************************************************************************
  735. //* Class: Win32_PowerPointActivePresentation
  736. //* Derived from: 
  737. //**************************************************************************
  738. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  739. class Win32_PowerPointActivePresentation
  740. {
  741.     [read: ToInstance ToSubClass] string Name;
  742.     [read: ToInstance ToSubClass] string Path;
  743.     [read: ToInstance ToSubClass] real32 Size;
  744.     [read: ToInstance ToSubClass] datetime CreateDate;
  745.     [read: ToInstance ToSubClass] string Author;
  746.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  747.     [read: ToInstance ToSubClass] string LastAuthor;
  748.     [read: ToInstance ToSubClass] string Template;
  749.     [read: ToInstance ToSubClass] uint32 Slides;
  750.     [read: ToInstance ToSubClass] uint32 Words;
  751.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  752.     [read: ToInstance ToSubClass] string View;
  753. };
  754.  
  755. //**************************************************************************
  756. //* Class: Win32_OutlookSummary
  757. //* Derived from:
  758. //**************************************************************************
  759. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  760. class Win32_OutlookSummary
  761. {
  762.     [read: ToInstance ToSubClass] string Name;
  763.     [read: ToInstance ToSubClass] string Version;
  764.     [read: ToInstance ToSubClass] string Build;
  765.     [read: ToInstance ToSubClass] string ProductID;
  766.     [read: ToInstance ToSubClass] string Language;
  767.     [read: ToInstance ToSubClass] string User;
  768.     [read: ToInstance ToSubClass] string Folder;
  769.     [read: ToInstance ToSubClass] string Item;
  770.     [read: ToInstance ToSubClass] string Path;
  771.     [read: ToInstance ToSubClass] string SystemLanguage;
  772.     [read: ToInstance ToSubClass] string MailSupport;
  773. };
  774.  
  775. //**************************************************************************
  776. //* Class: Win32_AccessSummary
  777. //* Derived from:
  778. //**************************************************************************
  779. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  780. class Win32_AccessSummary
  781. {
  782.     [read: ToInstance ToSubClass] string Name;
  783.     [read: ToInstance ToSubClass] string Version;
  784.     [read: ToInstance ToSubClass] string Build;
  785.     [read: ToInstance ToSubClass] string ProductID;
  786.     [read: ToInstance ToSubClass] string Path;
  787.     [read: ToInstance ToSubClass] string Language;
  788.     [read: ToInstance ToSubClass] string ADOVersion;
  789.     [read: ToInstance ToSubClass] string VBAVersion;
  790.     [read: ToInstance ToSubClass] string References;
  791. };
  792.  
  793. //**************************************************************************
  794. //* Class: Win32_AccessDatabase
  795. //* Derived from:
  796. //**************************************************************************
  797. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  798. class Win32_AccessDatabase
  799. {
  800.     [read: ToInstance ToSubClass] string Name;
  801.     [read: ToInstance ToSubClass] string Path;
  802.     [read: ToInstance ToSubClass] real32 Size;
  803.     [read: ToInstance ToSubClass] datetime CreateDate;
  804.     [read: ToInstance ToSubClass] string User;
  805.     [read: ToInstance ToSubClass] string JetVersion;
  806. };
  807.  
  808. //**************************************************************************
  809. //* Class: Win32_AccessProject
  810. //* Derived from:
  811. //**************************************************************************
  812. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  813. class Win32_AccessProject
  814. {
  815.     [read: ToInstance ToSubClass] string Name;
  816.     [read: ToInstance ToSubClass] string Path;
  817.     [read: ToInstance ToSubClass] real32 Size;
  818.     [read: ToInstance ToSubClass] datetime CreateDate;
  819.     [read: ToInstance ToSubClass] string ServerName;
  820.     [read: ToInstance ToSubClass] string DatabaseName;
  821.     [read: ToInstance ToSubClass] string LoginName;
  822.     [read: ToInstance ToSubClass] string DBMSName;
  823.     [read: ToInstance ToSubClass] string DBMSVersion;
  824.     [read: ToInstance ToSubClass] string DSNName;
  825. };
  826.  
  827. //**************************************************************************
  828. //* Class: Win32_PublisherSummary
  829. //* Derived from: 
  830. //**************************************************************************
  831. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  832. class Win32_PublisherSummary
  833. {
  834.     [read: ToInstance ToSubClass] string DisplayName;
  835.     [read: ToInstance ToSubClass] string RegOwner;
  836.     [read: ToInstance ToSubClass] string RegCompany;
  837.     [read: ToInstance ToSubClass] string ProductID;
  838.     [read: ToInstance ToSubClass] string LocalPackage;
  839.     [read: ToInstance ToSubClass] string DisplayVersion;
  840.     [read: ToInstance ToSubClass] string InstallDate;
  841.     [read: ToInstance ToSubClass] string InstallLocation;
  842.     [read: ToInstance ToSubClass] string InstallSource;
  843.     [read: ToInstance ToSubClass] string Language;
  844.     [read: ToInstance ToSubClass] string HelpLink;
  845.     [read: ToInstance ToSubClass] string URLInfoAbout;
  846.     [read: ToInstance ToSubClass] string URLUpdateInfo;
  847.     [read: ToInstance ToSubClass] string SystemLanguage;
  848.     [read: ToInstance ToSubClass] string ActivePrinter;
  849.  
  850. };
  851.  
  852. //**************************************************************************
  853. //* Class: Win32_FrontPageSummary
  854. //* Derived from: 
  855. //**************************************************************************
  856. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  857. class Win32_FrontPageSummary
  858. {
  859.     [read: ToInstance ToSubClass] string Name;
  860.     [read: ToInstance ToSubClass] string Version;
  861.     [read: ToInstance ToSubClass] string Build;
  862.     [read: ToInstance ToSubClass] string ProductID;
  863.     [read: ToInstance ToSubClass] string Path;
  864.     [read: ToInstance ToSubClass] string Language;
  865. };
  866.  
  867. //**************************************************************************
  868. //* Class: Win32_FrontPageActiveWeb
  869. //* Derived from: 
  870. //**************************************************************************
  871. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  872. class Win32_FrontPageActiveWeb
  873. {
  874.     [read: ToInstance ToSubClass] string Name;
  875.     [read: ToInstance ToSubClass] uint32 PageCount;
  876. };
  877.  
  878. //**************************************************************************
  879. //* Class: Win32_FrontPageWebProperty
  880. //* Derived from: 
  881. //**************************************************************************
  882. [dynamic: ToInstance, provider("OffProv12")]
  883. class Win32_FrontPageWebProperty
  884. {
  885.     [key, read: ToInstance ToSubClass] string Name;
  886.     [read: ToInstance ToSubClass] string Value;
  887. };
  888.  
  889. //**************************************************************************
  890. //* Class: Win32_FrontPageActivePage
  891. //* Derived from: 
  892. //**************************************************************************
  893. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  894. class Win32_FrontPageActivePage
  895. {
  896.     [read: ToInstance ToSubClass] string Name;
  897. };
  898.  
  899. //**************************************************************************
  900. //* Class: Win32_FrontPagePageProperty
  901. //* Derived from: 
  902. //**************************************************************************
  903. [dynamic: ToInstance, provider("OffProv12")]
  904. class Win32_FrontPagePageProperty
  905. {
  906.     [key, read: ToInstance ToSubClass] string Name;
  907.     [read: ToInstance ToSubClass] string Value;
  908. };
  909.  
  910. //**************************************************************************
  911. //* Class: Win32_FrontPageAddIns
  912. //* Derived from: 
  913. //**************************************************************************
  914. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  915. class Win32_FrontPageAddIns
  916. {
  917.     [read: ToInstance ToSubClass] uint32 AddInCount;
  918. };
  919.  
  920. //**************************************************************************
  921. //* Class: Win32_FrontPageAddIn
  922. //* Derived from: 
  923. //**************************************************************************
  924. [dynamic: ToInstance, provider("OffProv12")]
  925. class Win32_FrontPageAddIn
  926. {
  927.     [key, read: ToInstance ToSubClass] string Name;
  928.     [read: ToInstance ToSubClass] string Installed;
  929.     [read: ToInstance ToSubClass] string Creator;
  930.     [read: ToInstance ToSubClass] string Guid;
  931. };
  932.  
  933. //**************************************************************************
  934. //* Class: Win32_FrontPageThemes
  935. //* Derived from: 
  936. //**************************************************************************
  937. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  938. class Win32_FrontPageThemes
  939. {
  940.     [read: ToInstance ToSubClass] uint32 ThemeCount;
  941. };
  942.  
  943. //**************************************************************************
  944. //* Class: Win32_FrontPageTheme
  945. //* Derived from: 
  946. //**************************************************************************
  947. [dynamic: ToInstance, provider("OffProv12")]
  948. class Win32_FrontPageTheme
  949. {
  950.     [key, read: ToInstance ToSubClass] string Name;
  951. };
  952.  
  953. //**************************************************************************
  954. //* Class: Win32_WebConnectionError
  955. //* Derived from: 
  956. //**************************************************************************
  957. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  958. class Win32_WebConnectionError
  959. {
  960.     [read: ToInstance ToSubClass] string MessageFirstLine;
  961.     [read: ToInstance ToSubClass] string Timestamp;
  962. };
  963.  
  964. //**************************************************************************
  965. //* Class: Win32_WebConnectionErrorMessage
  966. //* Derived from: 
  967. //**************************************************************************
  968. [dynamic: ToInstance, provider("OffProv12")]
  969. class Win32_WebConnectionErrorMessage
  970. {
  971.     [key, read: ToInstance ToSubClass] string AdditionalLine;
  972. };
  973.  
  974. //**************************************************************************
  975. //* Class: Win32_WebConnectionErrorText
  976. //* Derived from: 
  977. //**************************************************************************
  978. [dynamic: ToInstance, provider("OffProv12")]
  979. class Win32_WebConnectionErrorText
  980. {
  981.     [key, read: ToInstance ToSubClass] string Text;
  982. };
  983.  
  984. //**************************************************************************
  985. //* Class: Win32_ServerExtension
  986. //* Derived from:
  987. //**************************************************************************
  988. [dynamic: ToInstance, provider("OffProv12")]
  989. class Win32_ServerExtension
  990. {
  991.     [read: ToInstance ToSubClass] string ServerType;
  992.     [key, read: ToInstance ToSubClass] string PortNumber;
  993.     [read: ToInstance ToSubClass] string Version;
  994.     [read: ToInstance ToSubClass] string Path;
  995. };
  996.  
  997.  
  998. //**************************************************************************
  999. //* Class: Win32_Language
  1000. //* Derived from:
  1001. //**************************************************************************
  1002. [dynamic: ToInstance, provider("OffProv12")]
  1003. class Win32_Language
  1004. {
  1005.     [read: ToInstance ToSubClass]      uint32 UILang;
  1006.     [read: ToInstance ToSubClass]      uint32 HelpLang;
  1007.     [read: ToInstance ToSubClass]      uint32 InstallLang;
  1008.     [key, read: ToInstance ToSubClass] uint32 SkuLang;
  1009.     [read: ToInstance ToSubClass]      uint32 WebLocale;
  1010. };
  1011.  
  1012.  
  1013.  
  1014. //**************************************************************************
  1015. //* Class: Win32_Transport
  1016. //* Derived from: 
  1017. //**************************************************************************
  1018. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1019. class Win32_Transport
  1020. {
  1021.     [read: ToInstance ToSubClass] boolean ProviderForInternetPublishing;
  1022.     [read: ToInstance ToSubClass] boolean OfficeInternetPublishing;
  1023. };
  1024.  
  1025. //**************************************************************************
  1026. //* Class: Win32_OdbcCoreComponent
  1027. //* Derived from:
  1028. //**************************************************************************
  1029. [dynamic: ToInstance, provider("OffProv12")]
  1030. class Win32_OdbcCoreComponent
  1031. {
  1032.     [key, read: ToInstance ToSubClass] string Description;
  1033.     [read: ToInstance ToSubClass] string Version;
  1034.     [read: ToInstance ToSubClass] string File;
  1035. };
  1036.  
  1037. //**************************************************************************
  1038. //* Class: Win32_OdbcDriver
  1039. //* Derived from:
  1040. //**************************************************************************
  1041. [dynamic: ToInstance, provider("OffProv12")]
  1042. class Win32_OdbcDriver
  1043. {
  1044.     [key, read: ToInstance ToSubClass] string Name;
  1045.     [read: ToInstance ToSubClass] string File;
  1046.     [read: ToInstance ToSubClass] datetime Date;
  1047.     [read: ToInstance ToSubClass] string Version;
  1048. };
  1049.  
  1050. //**************************************************************************
  1051. //* Class: Win32_OleDbProvider
  1052. //* Derived from:
  1053. //**************************************************************************
  1054. [dynamic: ToInstance, provider("OffProv12")]
  1055. class Win32_OleDbProvider
  1056. {
  1057.     [key, read: ToInstance ToSubClass] string Name;
  1058.     [read: ToInstance ToSubClass] string Version;
  1059. };
  1060.  
  1061.  
  1062.  
  1063. //**************************************************************************
  1064. //* Class: Win32_OfficeWatsonLog
  1065. //* Derived from:
  1066. //**************************************************************************
  1067. [dynamic: ToInstance, provider("OffProv12")]
  1068. class Win32_OfficeWatsonLog
  1069. {
  1070.     [key, read: ToInstance ToSubClass] string Event;
  1071.     [read: ToInstance ToSubClass] string Category;
  1072.     [read: ToInstance ToSubClass] string BucketID;
  1073.     [read: ToInstance ToSubClass] string BucketTable;
  1074.     [read: ToInstance ToSubClass] string AppName;
  1075.     [read: ToInstance ToSubClass] string AppVersion;
  1076.     [read: ToInstance ToSubClass] string AppStamp;
  1077.     [read: ToInstance ToSubClass] string ModuleName;
  1078.     [read: ToInstance ToSubClass] string ModuleVersion;
  1079.     [read: ToInstance ToSubClass] string ModuleStamp;
  1080.     [read: ToInstance ToSubClass] string Debug;
  1081.     [read: ToInstance ToSubClass] string Offset;
  1082.     [read: ToInstance ToSubClass] datetime Date;
  1083. };
  1084.  
  1085. //**************************************************************************
  1086. //* Class: Win32_JetCoreComponents
  1087. //* Derived from:
  1088. //**************************************************************************
  1089. [dynamic: ToInstance, provider("OffProv12")]
  1090. class Win32_JetCoreComponents
  1091. {
  1092.     [key, read: ToInstance ToSubClass] string Description;
  1093.     [read: ToInstance ToSubClass] string Path;
  1094.     [read: ToInstance ToSubClass] string Version;
  1095. };
  1096.  
  1097. //**************************************************************************
  1098. //* Class: Win32_ADOCoreComponents
  1099. //* Derived from:
  1100. //**************************************************************************
  1101. [dynamic: ToInstance, provider("OffProv12")]
  1102. class Win32_ADOCoreComponents
  1103. {
  1104.     [key, read: ToInstance ToSubClass] string Description;
  1105.     [read: ToInstance ToSubClass] string Path;
  1106.     [read: ToInstance ToSubClass] string Version;
  1107. };
  1108.  
  1109. //**************************************************************************
  1110. //* Class: Win32_RDOCoreComponents
  1111. //* Derived from:
  1112. //**************************************************************************
  1113. [dynamic: ToInstance, provider("OffProv12")]
  1114. class Win32_RDOCoreComponents
  1115. {
  1116.     [key, read: ToInstance ToSubClass] string Description;
  1117.     [read: ToInstance ToSubClass] string Path;
  1118.     [read: ToInstance ToSubClass] string Version;
  1119. };
  1120.  
  1121.  
  1122. //**************************************************************************
  1123. //* Class: Win32_Excel12AlternateStartupFileLoc
  1124. //* Derived from: 
  1125. //**************************************************************************
  1126. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1127. class Win32_Excel12AlternateStartupFileLoc
  1128. {
  1129.     [read: ToInstance ToSubClass] string Path;
  1130. };
  1131.  
  1132.  
  1133. //**************************************************************************
  1134. //* Class: Win32_Excel12DefaultFileLoc
  1135. //* Derived from: 
  1136. //**************************************************************************
  1137. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1138. class Win32_Excel12DefaultFileLoc
  1139. {
  1140.     [read: ToInstance ToSubClass] string Path;
  1141. };
  1142.  
  1143. //**************************************************************************
  1144. //* Class: Win32_Excel12StartupFolder
  1145. //* Derived from: 
  1146. //**************************************************************************
  1147. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1148. class Win32_Excel12StartupFolder
  1149. {
  1150.     [read: ToInstance ToSubClass] string Path;
  1151. };
  1152.  
  1153. //**************************************************************************
  1154. //* Class: Win32_Access12AlternateStartupFileLoc
  1155. //* Derived from: 
  1156. //**************************************************************************
  1157. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1158. class Win32_Access12AlternateStartupFileLoc
  1159. {
  1160.     [read: ToInstance ToSubClass] string Path;
  1161. };
  1162.  
  1163.  
  1164. //**************************************************************************
  1165. //* Class: Win32_Access12DefaultFileLoc
  1166. //* Derived from: 
  1167. //**************************************************************************
  1168. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1169. class Win32_Access12DefaultFileLoc
  1170. {
  1171.     [read: ToInstance ToSubClass] string Path;
  1172. };
  1173.  
  1174. //**************************************************************************
  1175. //* Class: Win32_Access12StartupFolder
  1176. //* Derived from: 
  1177. //**************************************************************************
  1178. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1179. class Win32_Access12StartupFolder
  1180. {
  1181.     [read: ToInstance ToSubClass] string Path;
  1182. };
  1183.  
  1184. //**************************************************************************
  1185. //* Class: Win32_Access12JetComponents
  1186. //* Derived from:
  1187. //**************************************************************************
  1188. [dynamic: ToInstance, provider("OffProv12")]
  1189. class Win32_Access12JetComponents
  1190. {
  1191.     [key, read: ToInstance ToSubClass] string Description;
  1192.     [read: ToInstance ToSubClass] string Path;
  1193.     [read: ToInstance ToSubClass] string Version;
  1194. };
  1195.  
  1196. //**************************************************************************
  1197. //* Class: Win32_PowerPoint12SelectedTable
  1198. //* Derived from: 
  1199. //**************************************************************************
  1200. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1201. class Win32_PowerPoint12SelectedTable
  1202. {
  1203.     [read: ToInstance ToSubClass] uint32 Page;
  1204.     [read: ToInstance ToSubClass] uint32 Section;
  1205.     [read: ToInstance ToSubClass] uint32 Rows;
  1206.     [read: ToInstance ToSubClass] uint32 Columns;
  1207.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  1208.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  1209.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  1210.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  1211.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  1212.     [read: ToInstance ToSubClass] uint32 Tables;
  1213.     [read: ToInstance ToSubClass] string PreferredWidthType;
  1214.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  1215.     [read: ToInstance ToSubClass] real32 Spacing;
  1216.     [read: ToInstance ToSubClass] real32 TopMargin;
  1217.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1218.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1219.     [read: ToInstance ToSubClass] real32 RightMargin;
  1220.     [read: ToInstance ToSubClass] string RowAlignment;
  1221.     [read: ToInstance ToSubClass] string RowHeightRule;
  1222.     [read: ToInstance ToSubClass] real32 LeftIndent;
  1223.     [read: ToInstance ToSubClass] boolean Uniform;
  1224. };
  1225.  
  1226. //**************************************************************************
  1227. //* Class: Win32_PowerPoint12Table
  1228. //* Derived from: 
  1229. //**************************************************************************
  1230. [dynamic: ToInstance, provider("OffProv12")]
  1231. class Win32_PowerPoint12Table
  1232. {
  1233.     [key, read: ToInstance ToSubClass] uint32 Index;
  1234.     [read: ToInstance ToSubClass] uint32 Page;
  1235.     [read: ToInstance ToSubClass] uint32 Section;
  1236.     [read: ToInstance ToSubClass] uint32 Rows;
  1237.     [read: ToInstance ToSubClass] uint32 Columns;
  1238.     [read: ToInstance ToSubClass] boolean NestedTables;
  1239. };
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245. //**************************************************************************
  1246. //* Class: Win32_PowerPoint12Tables
  1247. //* Derived from: 
  1248. //**************************************************************************
  1249. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1250. class Win32_PowerPoint12Tables
  1251. {
  1252.     [read: ToInstance ToSubClass] uint32 TableCount;
  1253. };
  1254.  
  1255.  
  1256.  
  1257. //**************************************************************************
  1258. //* Class: Win32_PowerPoint12PageNumber
  1259. //* Derived from: 
  1260. //**************************************************************************
  1261. [dynamic: ToInstance, provider("OffProv12")]
  1262. class Win32_PowerPoint12PageNumber
  1263. {
  1264.     [key, read: ToInstance ToSubClass] uint32 Section;
  1265.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  1266.     [read: ToInstance ToSubClass] string PageNumbersIn;
  1267.     [read: ToInstance ToSubClass] uint32 Start;
  1268.     [read: ToInstance ToSubClass] boolean Restart;
  1269.     [read: ToInstance ToSubClass] boolean ShowFirst;
  1270. };
  1271.  
  1272.  
  1273. //**************************************************************************
  1274. //* Class: Win32_PowerPoint12Hyperlinks
  1275. //* Derived from: 
  1276. //**************************************************************************
  1277. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1278. class Win32_PowerPoint12Hyperlinks
  1279. {
  1280.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  1281. };
  1282.  
  1283. //**************************************************************************
  1284. //* Class: Win32_PowerPoint12Hyperlink
  1285. //* Derived from: 
  1286. //**************************************************************************
  1287. [dynamic: ToInstance, provider("OffProv12")]
  1288. class Win32_PowerPoint12Hyperlink
  1289. {
  1290.     [key, read: ToInstance ToSubClass] uint32 Index;
  1291.     [read: ToInstance ToSubClass] string Target;
  1292.     [read: ToInstance ToSubClass] string Address;
  1293.     [read: ToInstance ToSubClass] string TextToDisplay;
  1294.     [read: ToInstance ToSubClass] string Type;
  1295.     [read: ToInstance ToSubClass] string Subaddress;
  1296.     [read: ToInstance ToSubClass] string ScreenTip;
  1297.     [read: ToInstance ToSubClass] string Name;
  1298. };
  1299.  
  1300.  
  1301. //**************************************************************************
  1302. //* Class: Win32_PowerPoint12Fonts
  1303. //* Derived from: 
  1304. //**************************************************************************
  1305. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1306. class Win32_PowerPoint12Fonts
  1307. {
  1308.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  1309.     [read: ToInstance ToSubClass] uint32 FontCount;
  1310. };
  1311.  
  1312. //**************************************************************************
  1313. //* Class: Win32_PowerPoint12Font
  1314. //* Derived from: 
  1315. //**************************************************************************
  1316. [dynamic: ToInstance, provider("OffProv12")]
  1317. class Win32_PowerPoint12Font
  1318. {
  1319.     [key, read: ToInstance ToSubClass] string Name;
  1320. };
  1321.  
  1322.  
  1323. //**************************************************************************
  1324. //* Class: Win32_PowerPoint12ComAddins
  1325. //* Derived from: 
  1326. //**************************************************************************
  1327. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1328. class Win32_PowerPoint12ComAddins
  1329. {
  1330.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1331. };
  1332.  
  1333. //**************************************************************************
  1334. //* Class: Win32_PowerPoint12ComAddin
  1335. //* Derived from: 
  1336. //**************************************************************************
  1337. [dynamic: ToInstance, provider("OffProv12")]
  1338. class Win32_PowerPoint12ComAddin
  1339. {
  1340.     [key, read: ToInstance ToSubClass] string Name;
  1341.     [read: ToInstance ToSubClass] string Installed;
  1342.     [read: ToInstance ToSubClass] string Creator;
  1343.     [read: ToInstance ToSubClass] string Guid;
  1344.     [read: ToInstance ToSubClass] string Path;
  1345. };
  1346.  
  1347.  
  1348. //**************************************************************************
  1349. //* Class: Win32_PowerPoint12AlternateStartupLoc
  1350. //* Derived from: 
  1351. //**************************************************************************
  1352. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1353. class Win32_PowerPoint12AlternateStartupLoc
  1354. {
  1355.     [read: ToInstance ToSubClass] string Path;
  1356. };
  1357.  
  1358.  
  1359. //**************************************************************************
  1360. //* Class: Win32_PowerPoint12DefaultFileLoc
  1361. //* Derived from: 
  1362. //**************************************************************************
  1363. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1364. class Win32_PowerPoint12DefaultFileLoc
  1365. {
  1366.     [read: ToInstance ToSubClass] string Path;
  1367. };
  1368.  
  1369. //**************************************************************************
  1370. //* Class: Win32_PowerPoint12StartupFolder
  1371. //* Derived from: 
  1372. //**************************************************************************
  1373. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1374. class Win32_PowerPoint12StartupFolder
  1375. {
  1376.     [read: ToInstance ToSubClass] string Path;
  1377. };
  1378.  
  1379. //**************************************************************************
  1380. //* Class: Win32_PowerPoint12PageSetup
  1381. //* Derived from: 
  1382. //**************************************************************************
  1383. [dynamic: ToInstance, provider("OffProv12")]
  1384. class Win32_PowerPoint12PageSetup
  1385. {
  1386.     [key, read: ToInstance ToSubClass] uint32 Section;
  1387.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  1388.     [read: ToInstance ToSubClass] real32 FooterDistance;
  1389.     [read: ToInstance ToSubClass] real32 TopMargin;
  1390.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1391.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1392.     [read: ToInstance ToSubClass] real32 RightMargin;
  1393.     [read: ToInstance ToSubClass] string PaperSize;
  1394.     [read: ToInstance ToSubClass] real32 PageHeight;
  1395.     [read: ToInstance ToSubClass] real32 PageWidth;
  1396.     [read: ToInstance ToSubClass] string Orientation;
  1397.     [read: ToInstance ToSubClass] string SectionStart;
  1398.     [read: ToInstance ToSubClass] string VerticalAlignment;
  1399.     [read: ToInstance ToSubClass] real32 CharsLine;
  1400.     [read: ToInstance ToSubClass] real32 LinesPage;
  1401.     [read: ToInstance ToSubClass] string Notables;
  1402. };
  1403.  
  1404. //**************************************************************************
  1405. //* Class: Win32_Publisher12ActiveDocument
  1406. //* Derived from: 
  1407. //**************************************************************************
  1408. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1409. class Win32_Publisher12ActiveDocument
  1410. {
  1411.     [read: ToInstance ToSubClass] string Name;
  1412.     [read: ToInstance ToSubClass] string Path;
  1413.     [read: ToInstance ToSubClass] real32 Size;
  1414.     [read: ToInstance ToSubClass] datetime CreateDate;
  1415.     [read: ToInstance ToSubClass] string Author;
  1416.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  1417.     [read: ToInstance ToSubClass] string LastAuthor;
  1418.     [read: ToInstance ToSubClass] string Template;
  1419.     [read: ToInstance ToSubClass] uint32 Chars;
  1420.     [read: ToInstance ToSubClass] uint32 CharsWithSpaces;
  1421.     [read: ToInstance ToSubClass] uint32 Words;
  1422.     [read: ToInstance ToSubClass] uint32 Lines;
  1423.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  1424.     [read: ToInstance ToSubClass] uint32 Pages;
  1425.     [read: ToInstance ToSubClass] uint32 Sections;
  1426.     [read: ToInstance ToSubClass] string View;
  1427.     [read: ToInstance ToSubClass] uint32 ZoomPercentage;
  1428.     [read: ToInstance ToSubClass] boolean AllowFastSaves;
  1429.     [read: ToInstance ToSubClass] sint32 WindowPosLeft;
  1430.     [read: ToInstance ToSubClass] sint32 WindowPosTop;
  1431.     [read: ToInstance ToSubClass] string StoryTypes;
  1432. };
  1433.  
  1434. //**************************************************************************
  1435. //* Class: Win32_Publisher12ActiveDocumentNoTable
  1436. //* Derived from: 
  1437. //**************************************************************************
  1438. [dynamic: ToInstance, provider("OffProv12")]
  1439. class Win32_Publisher12ActiveDocumentNoTable
  1440. {
  1441.     [key, read: ToInstance ToSubClass] string Text;
  1442. };
  1443.  
  1444. //**************************************************************************
  1445. //* Class: Win32_Publisher12AlternateStartupFileLocation
  1446. //* Derived from: 
  1447. //**************************************************************************
  1448. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1449. class Win32_Publisher12AlternateStartupFileLocation
  1450. {
  1451.     [read: ToInstance ToSubClass] string Path;
  1452. };
  1453.  
  1454. //**************************************************************************
  1455. //* Class: Win32_Publisher12COMAddIns
  1456. //* Derived from: 
  1457. //**************************************************************************
  1458. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1459. class Win32_Publisher12COMAddIns
  1460. {
  1461.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1462. };
  1463.  
  1464. //**************************************************************************
  1465. //* Class: Win32_Publisher12COMAddIn
  1466. //* Derived from: 
  1467. //**************************************************************************
  1468. [dynamic: ToInstance, provider("OffProv12")]
  1469. class Win32_Publisher12COMAddIn
  1470. {
  1471.     [key, read: ToInstance ToSubClass] string Name;
  1472.     [read: ToInstance ToSubClass] string Installed;
  1473.     [read: ToInstance ToSubClass] string Creator;
  1474.     [read: ToInstance ToSubClass] string Guid;
  1475.     [read: ToInstance ToSubClass] string Path;
  1476. };
  1477.  
  1478. //**************************************************************************
  1479. //* Class: Win32_Publisher12DefaultFileLocation
  1480. //* Derived from: 
  1481. //**************************************************************************
  1482. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1483. class Win32_Publisher12DefaultFileLocation
  1484. {
  1485.     [read: ToInstance ToSubClass] string Path;
  1486. };
  1487.  
  1488. //**************************************************************************
  1489. //* Class: Win32_Publisher12Tables
  1490. //* Derived from: 
  1491. //**************************************************************************
  1492. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1493. class Win32_Publisher12Tables
  1494. {
  1495.     [read: ToInstance ToSubClass] uint32 TableCount;
  1496. };     
  1497.      
  1498. //**************************************************************************
  1499. //* Class: Win32_Publisher12SelectedTable
  1500. //* Derived from: 
  1501. //**************************************************************************
  1502. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1503. class Win32_Publisher12SelectedTable
  1504. {
  1505.     [read: ToInstance ToSubClass] uint32 Page;
  1506.     [read: ToInstance ToSubClass] uint32 Section;
  1507.     [read: ToInstance ToSubClass] uint32 Rows;
  1508.     [read: ToInstance ToSubClass] uint32 Columns;
  1509.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  1510.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  1511.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  1512.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  1513.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  1514.     [read: ToInstance ToSubClass] uint32 Tables;
  1515.     [read: ToInstance ToSubClass] string PreferredWidthType;
  1516.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  1517.     [read: ToInstance ToSubClass] real32 Spacing;
  1518.     [read: ToInstance ToSubClass] real32 TopMargin;
  1519.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1520.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1521.     [read: ToInstance ToSubClass] real32 RightMargin;
  1522.     [read: ToInstance ToSubClass] string RowAlignment;
  1523.     [read: ToInstance ToSubClass] string RowHeightRule;
  1524.     [read: ToInstance ToSubClass] real32 LeftIndent;
  1525.     [read: ToInstance ToSubClass] boolean Uniform;
  1526. };    
  1527.  
  1528.  
  1529. //**************************************************************************
  1530. //* Class: Win32_Publisher12Table
  1531. //* Derived from: 
  1532. //**************************************************************************
  1533. [dynamic: ToInstance, provider("OffProv12")]
  1534. class Win32_Publisher12Table
  1535. {
  1536.     [key, read: ToInstance ToSubClass] uint32 Index;
  1537.     [read: ToInstance ToSubClass] uint32 Page;
  1538.     [read: ToInstance ToSubClass] uint32 Section;
  1539.     [read: ToInstance ToSubClass] uint32 Rows;
  1540.     [read: ToInstance ToSubClass] uint32 Columns;
  1541.     [read: ToInstance ToSubClass] boolean NestedTables;
  1542. };
  1543.     
  1544.  
  1545. //**************************************************************************
  1546. //* Class: Win32_Publisher12Fonts
  1547. //* Derived from: 
  1548. //**************************************************************************
  1549. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1550. class Win32_Publisher12Fonts
  1551. {
  1552.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  1553.     [read: ToInstance ToSubClass] uint32 FontCount;
  1554. };
  1555.  
  1556. //**************************************************************************
  1557. //* Class: Win32_Publisher12Font
  1558. //* Derived from: 
  1559. //**************************************************************************
  1560. [dynamic: ToInstance, provider("OffProv12")]
  1561. class Win32_Publisher12Font
  1562. {
  1563.     [key, read: ToInstance ToSubClass] string Name;
  1564. };
  1565.  
  1566.  
  1567. //**************************************************************************
  1568. //* Class: Win32_Publisher12Hyperlinks
  1569. //* Derived from: 
  1570. //**************************************************************************
  1571. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1572. class Win32_Publisher12Hyperlinks
  1573. {
  1574.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  1575. };
  1576.  
  1577. //**************************************************************************
  1578. //* Class: Win32_Publisher12Hyperlink
  1579. //* Derived from: 
  1580. //**************************************************************************
  1581. [dynamic: ToInstance, provider("OffProv12")]
  1582. class Win32_Publisher12Hyperlink
  1583. {
  1584.     [key, read: ToInstance ToSubClass] uint32 Index;
  1585.     [read: ToInstance ToSubClass] string Target;
  1586.     [read: ToInstance ToSubClass] string Address;
  1587.     [read: ToInstance ToSubClass] string TextToDisplay;
  1588.     [read: ToInstance ToSubClass] string Type;
  1589.     [read: ToInstance ToSubClass] string Subaddress;
  1590.     [read: ToInstance ToSubClass] string ScreenTip;
  1591.     [read: ToInstance ToSubClass] string Name;
  1592. };
  1593.  
  1594. //**************************************************************************
  1595. //* Class: Win32_Publisher12MailMerge
  1596. //* Derived from: 
  1597. //**************************************************************************
  1598. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1599. class Win32_Publisher12MailMerge
  1600. {
  1601.     [read: ToInstance ToSubClass] string DocumentName;
  1602.     [read: ToInstance ToSubClass] string DocumentType;
  1603.     [read: ToInstance ToSubClass] string MergeTo;
  1604.     [read: ToInstance ToSubClass] string State;
  1605.     [read: ToInstance ToSubClass] boolean SuppressBlankLines;
  1606.     [read: ToInstance ToSubClass] boolean ViewFieldCodes;
  1607.     [read: ToInstance ToSubClass] uint32 FieldCount;
  1608.     [read: ToInstance ToSubClass] string FieldCodes;
  1609.     [read: ToInstance ToSubClass] string DataSourceName;
  1610.     [read: ToInstance ToSubClass] string DataSourceType;
  1611.     [read: ToInstance ToSubClass] string ActiveRecord;
  1612.     [read: ToInstance ToSubClass] string FieldNames;
  1613.     [read: ToInstance ToSubClass] string Notables;
  1614. };    
  1615.     
  1616. //**************************************************************************
  1617. //* Class: Win32_Publisher12PageNumber
  1618. //* Derived from: 
  1619. //**************************************************************************
  1620. [dynamic: ToInstance, provider("OffProv12")]
  1621. class Win32_Publisher12PageNumber
  1622. {
  1623.     [key, read: ToInstance ToSubClass] uint32 Section;
  1624.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  1625.     [read: ToInstance ToSubClass] string PageNumbersIn;
  1626.     [read: ToInstance ToSubClass] uint32 Start;
  1627.     [read: ToInstance ToSubClass] boolean Restart;
  1628.     [read: ToInstance ToSubClass] boolean ShowFirst;
  1629. };    
  1630.     
  1631. //**************************************************************************
  1632. //* Class: Win32_Publisher12PageSetup
  1633. //* Derived from: 
  1634. //**************************************************************************
  1635. [dynamic: ToInstance, provider("OffProv12")]
  1636. class Win32_Publisher12PageSetup
  1637. {
  1638.     [key, read: ToInstance ToSubClass] uint32 Section;
  1639.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  1640.     [read: ToInstance ToSubClass] real32 FooterDistance;
  1641.     [read: ToInstance ToSubClass] real32 TopMargin;
  1642.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1643.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1644.     [read: ToInstance ToSubClass] real32 RightMargin;
  1645.     [read: ToInstance ToSubClass] string PaperSize;
  1646.     [read: ToInstance ToSubClass] real32 PageHeight;
  1647.     [read: ToInstance ToSubClass] real32 PageWidth;
  1648.     [read: ToInstance ToSubClass] string Orientation;
  1649.     [read: ToInstance ToSubClass] string SectionStart;
  1650.     [read: ToInstance ToSubClass] string VerticalAlignment;
  1651.     [read: ToInstance ToSubClass] real32 CharsLine;
  1652.     [read: ToInstance ToSubClass] real32 LinesPage;
  1653.     [read: ToInstance ToSubClass] string Notables;
  1654. };
  1655.  
  1656.     
  1657. //    Win32_Publisher12PageNumbers
  1658.     
  1659.  
  1660.     //**************************************************************************
  1661. //* Win32_Publisher12Styles
  1662. //* Derived from: 
  1663. //**************************************************************************
  1664. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1665. class Win32_Publisher12Styles
  1666. {
  1667.     [read: ToInstance ToSubClass] boolean AutoFormatAsYouTypeDefineStyles;
  1668.     [read: ToInstance ToSubClass] boolean AutoFormatPreserveStyles;
  1669.     [read: ToInstance ToSubClass] uint32 ParagraphStyleCount;
  1670.     [read: ToInstance ToSubClass] uint32 CharacterStyleCount;
  1671. };
  1672.  
  1673. //**************************************************************************
  1674. //* Class: Win32_Publisher12ParagraphStyle
  1675. //* Derived from: 
  1676. //**************************************************************************
  1677. [dynamic: ToInstance, provider("OffProv12")]
  1678. class Win32_Publisher12ParagraphStyle
  1679. {
  1680.     [key, read: ToInstance ToSubClass] string Name;
  1681.     [read: ToInstance ToSubClass] string Description;
  1682.     [read: ToInstance ToSubClass] string BaseStyle;
  1683.     [read: ToInstance ToSubClass] string NextStyle;
  1684.     [read: ToInstance ToSubClass] boolean BuiltIn;
  1685.     [read: ToInstance ToSubClass] boolean NoProofing;
  1686.     [read: ToInstance ToSubClass] boolean AutomaticallyUpdate;
  1687. };
  1688.  
  1689. //**************************************************************************
  1690. //* Class: Win32_Publisher12CharacterStyle
  1691. //* Derived from: 
  1692. //**************************************************************************
  1693. [dynamic: ToInstance, provider("OffProv12")]
  1694. class Win32_Publisher12CharacterStyle
  1695. {
  1696.     [key, read: ToInstance ToSubClass] string Name;
  1697.     [read: ToInstance ToSubClass] string Description;
  1698.     [read: ToInstance ToSubClass] string BaseStyle;
  1699.     [read: ToInstance ToSubClass] boolean BuiltIn;
  1700. };
  1701.     
  1702. //**************************************************************************
  1703. //* Class: Win32_Publisher12StartupFolder
  1704. //* Derived from: 
  1705. //**************************************************************************
  1706. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1707. class Win32_Publisher12StartupFolder
  1708. {
  1709.     [read: ToInstance ToSubClass] string Path;
  1710. };
  1711.     
  1712.     
  1713. //**************************************************************************
  1714. //* Class: Win32_Publisher12Sections
  1715. //* Derived from: 
  1716. //**************************************************************************
  1717. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1718. class Win32_Publisher12Sections
  1719. {
  1720.     [read: ToInstance ToSubClass] uint32 SectionCount;
  1721. };    
  1722.  
  1723. //**************************************************************************
  1724. //* Class: Win32_OutlookAlternateStartupFile
  1725. //* Derived from: 
  1726. //**************************************************************************
  1727. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1728. class Win32_OutlookAlternateStartupFile
  1729. {
  1730.     [read: ToInstance ToSubClass] string Path;
  1731. };
  1732.  
  1733.  
  1734. //**************************************************************************
  1735. //* Class:Win32_OutlookStartupFolder
  1736. //* Derived from: 
  1737. //**************************************************************************
  1738. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1739. class Win32_OutlookStartupFolder
  1740. {
  1741.     [read: ToInstance ToSubClass] string Path;
  1742. };
  1743.  
  1744. //**************************************************************************
  1745. //* Class: Win32_OutlookDefaultFileLocation
  1746. //* Derived from: 
  1747. //**************************************************************************
  1748. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1749. class Win32_OutlookDefaultFileLocation
  1750. {
  1751.     [read: ToInstance ToSubClass] string Path;
  1752. };
  1753.  
  1754.  
  1755.  
  1756.  
  1757.  
  1758.  
  1759. //**************************************************************************
  1760. //* Class: Win32_OutlookComAddins
  1761. //* Derived from: 
  1762. //**************************************************************************
  1763. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1764. class Win32_OutlookComAddins
  1765. {
  1766.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1767. };
  1768.  
  1769. //**************************************************************************
  1770. //* Class: Win32_OutlookComAddin
  1771. //* Derived from: 
  1772. //**************************************************************************
  1773. [dynamic: ToInstance, provider("OffProv12")]
  1774. class Win32_OutlookComAddin
  1775. {
  1776.     [key, read: ToInstance ToSubClass] string Name;
  1777.     [read: ToInstance ToSubClass] string Installed;
  1778.     [read: ToInstance ToSubClass] string Creator;
  1779.     [read: ToInstance ToSubClass] string Guid;
  1780.     [read: ToInstance ToSubClass] string Path;
  1781. };
  1782.  
  1783. //**************************************************************************
  1784. //* Class: Win32_OutlookComAddins
  1785. //* Derived from: 
  1786. //**************************************************************************
  1787. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1788. class Win32_OutlookComAddins
  1789. {
  1790.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1791. };
  1792.  
  1793. //**************************************************************************
  1794. //* Class: Win32_OutlookComAddin
  1795. //* Derived from: 
  1796. //**************************************************************************
  1797. [dynamic: ToInstance, provider("OffProv12")]
  1798. class Win32_OutlookComAddin
  1799. {
  1800.     [key, read: ToInstance ToSubClass] string Name;
  1801.     [read: ToInstance ToSubClass] string Installed;
  1802.     [read: ToInstance ToSubClass] string Creator;
  1803.     [read: ToInstance ToSubClass] string Guid;
  1804.     [read: ToInstance ToSubClass] string Path;
  1805. };
  1806.  
  1807.  
  1808. //**************************************************************************
  1809. //* Class: Win32_Access12ComAddins
  1810. //* Derived from: 
  1811. //**************************************************************************
  1812. [dynamic: ToInstance, provider("OffProv12"), Singleton: DisableOverride ToInstance ToSubClass]
  1813. class Win32_Access12ComAddins
  1814. {
  1815.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1816. };
  1817.  
  1818. //**************************************************************************
  1819. //* Class: Win32_Access12ComAddin
  1820. //* Derived from: 
  1821. //**************************************************************************
  1822. [dynamic: ToInstance, provider("OffProv12")]
  1823. class Win32_Access12ComAddin
  1824. {
  1825.     [key, read: ToInstance ToSubClass] string Name;
  1826.     [read: ToInstance ToSubClass] string Installed;
  1827.     [read: ToInstance ToSubClass] string Creator;
  1828.     [read: ToInstance ToSubClass] string Guid;
  1829.     [read: ToInstance ToSubClass] string Path;
  1830. };
  1831.  
  1832. //* EOF OInfoP12.mof
  1833.